home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / pc / pm65sdk / sourcecode / includes / cipminfo.h < prev    next >
C/C++ Source or Header  |  1996-11-18  |  659b  |  32 lines

  1. /**[f******************************************************************
  2.  *    cipminfo.h -- PageMaker application information interface
  3.  *    definition
  4.  *
  5.  *    Copyright (c) 1996 Adobe Systems, Inc. All Rights Reserved
  6.  *
  7.  *    
  8.  * ABSTRACT:  
  9.  *
  10.  * USAGE: 
  11.  *
  12.  * ROUTINES DEFINED:
  13.  *
  14.  * $Revision:   1.1  $
  15.  *
  16.  *
  17.  *
  18.  **f]******************************************************************/ 
  19.  
  20. #ifndef __CIPMINFO_H
  21. #define __CIPMINFO_H
  22.  
  23. class CIPMInfo : public CIInterface {
  24. public:
  25.     char *GetUserName()=0;
  26.     char *GetCompanyName()=0;
  27.     char *GetSerialNumber()=0;
  28.     char *GetVersionNumber()=0;
  29. //    PMLANGUAGE GetLanguageVersion()=0;    
  30. };
  31. #endif
  32.